* {
    font-family: cursive;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #D2D3D7;
    background-image: url(/Images/26.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    
}
#p {
    text-align: left;
    padding: 12px;
}

header {
    background-color: #3a5a40;
    color: #e4b61a;
    text-align: center;
    padding: 1em;
}
section {
    max-width: 60%;
    color: #e4b61a;
    margin: 2em auto;
    padding: 2em;
    background-color: #3a5a40;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex; 
    
}
p {
    text-align: center;
    flex: 2;
}
footer {
    background-color: #3a5a40;
    color: #e4b61a;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100vw;
    
}
nav a {
    text-decoration: none;
    color: #e4b61a;
    padding: 10px;
}
nav a:hover {
    font-size: large;
}
div {

    display: flex;
}

video {
    max-width: 30vw;
    
}

@media (max-width: 600px) {
    section {
      -webkit-flex-direction: column;
      flex-direction: column;
    }
   video {
    min-width: 60vw;
   }
   body{
    background-image: url(/Images/25.png);
   background-position: bottom;
   background-size: 100vh;
   min-height: 100vh;
   
  }
  footer {
    position: relative;
    bottom: 0;

  }
  #p {
    font-size: smaller;
  }
  h1 {
    font-size: 20px;
  }
  nav a {
    font-size: smaller;
  }
}